home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / text / misc / MSWordView_src.lha / mswordview / config.h.in < prev    next >
Text File  |  1998-12-02  |  2KB  |  102 lines

  1. /* config.h.in.  Generated automatically from configure.in by autoheader.  */
  2.  
  3. /* Define to empty if the keyword does not work.  */
  4. #undef const
  5.  
  6. /* Define if you have <sys/wait.h> that is POSIX.1 compatible.  */
  7. #undef HAVE_SYS_WAIT_H
  8.  
  9. /* Define if you have the wait3 system call.  */
  10. #undef HAVE_WAIT3
  11.  
  12. /* Define if you have the waitpid system call.  */
  13. #undef HAVE_WAITPID
  14.  
  15. /* Define as the return type of signal handlers (int or void).  */
  16. #undef RETSIGTYPE
  17.  
  18. /* Define if you have the <errno.h> header file.  */
  19. #define HAVE_ERRNO_H 1
  20.  
  21. #undef HAVE_POSIX_SIGNALS
  22.  
  23. /* Define to `int' if <sys/types.h> doesn't define.  */
  24. #undef pid_t
  25.  
  26. /* Define if you have the ANSI C header files.  */
  27. #undef STDC_HEADERS
  28.  
  29. /* Define if you have the <fcntl.h> header file.  */
  30. #undef HAVE_FCNTL_H
  31.  
  32. /* Define if you have the <sys/file.h> header file.  */
  33. #undef HAVE_SYS_FILE_H
  34.  
  35. /* Define if you have the <sys/ioctl.h> header file.  */
  36. #undef HAVE_SYS_IOCTL_H
  37.  
  38. /* Define if you have the <unistd.h> header file.  */
  39. #undef HAVE_UNISTD_H
  40.  
  41. /* Define if you want zlib to uncompress wmf files */
  42. #undef SYSTEM_ZLIB
  43.  
  44. #if defined(HAVE_SYS_WAIT_H)
  45. #include <sys/wait.h>
  46. #endif
  47.  
  48.  
  49. #if defined (ultrix) && defined (mips) && defined (_POSIX_VERSION)
  50. #  define WAITPID(pid, statusp, options) \
  51. wait3 ((union wait *)statusp, options, (struct rusage *)0)
  52. #else
  53. #  if defined (_POSIX_VERSION) || defined (HAVE_WAITPID)
  54. #    define WAITPID(pid, statusp, options) \
  55. waitpid ((pid_t)pid, statusp, options)
  56. #  else
  57. #    if defined (HAVE_WAIT3)
  58. #      define WAITPID(pid, statusp, options) \
  59. wait3 (statusp, options, (struct rusage *)0)
  60. #    else
  61. #      define WAITPID(pid, statusp, options) \
  62. wait3 (statusp, options, (int *)0)
  63. #    endif /* HAVE_WAIT3 */
  64. #  endif /* !_POSIX_VERSION && !HAVE_WAITPID*/
  65. #endif /* !(Ultrix && mips && _POSIX_VERSION) */
  66.  
  67.  
  68. /*signal things*/
  69. #include <signal.h>
  70.  
  71. #if !defined (HAVE_POSIX_SIGNALS)
  72. #  define signal_handle(sig, handler) signal (sig, handler)
  73. #else
  74. extern void signal_handle();   /* in c code*/
  75. #if !defined (SA_RESTART)
  76. #  define SA_RESTART 0
  77. #endif
  78. #endif /* _POSIX_VERSION */
  79.  
  80. typedef RETSIGTYPE SigHandler ();
  81.  
  82.  
  83. #ifdef HAVE_UNISTD_H
  84. #include <unistd.h>
  85. #endif
  86. #ifdef HAVE_FCNTL_H
  87. #include <fcntl.h>
  88. #endif
  89.  
  90. #if defined(HAVE_ERRNO_H)
  91. #include <errno.h>
  92. #endif
  93.  
  94. #include <sys/types.h>
  95. #include <sys/stat.h>
  96. #include <limits.h>
  97. #include <dirent.h>
  98. #include <stdarg.h>
  99.  
  100. #include <getopt.h>
  101.  
  102.